��<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <SCRIPT LANGUAGE="JavaScript"> <!-- Original: Abraham I. (abraham_824@hotmail.com) --> <!-- This script and many more are available free online at --> <!-- The JavaScript Source!! http://javascript.internet.com --> <!-- Begin function clock() { var t = new Date(); var h = t.getHours(); var m = t.getMinutes(); var s = t.getSeconds(); var units = new String(""); var hours = t.getHours(); var min = t.getMinutes(); var sec = t.getSeconds(); document.clock.hours.value = units.substring(0, hours); document.clock.minutes.value = units.substring(0, min); document.clock.seconds.value = units.substring(0, sec); var status = "AM"; if (hours > 11) status = "PM"; if (hours < 11) if (min < 10) min = "0" + min; if (sec < 10) sec = "0" + sec; document.clock.h.value = hours; document.clock.m.value = min; document.clock.s.value = sec; document.clock.time.value = hours + ":" + min + ":" + sec + " " + status; window.setTimeout("clock()", 900); } // End --> </script> <meta http-equiv="Content-Type" content="text/html; charset=unicode"> <style type="text/css"> body { background-image: url(../img/fon/fon_00001.jpg); } </style> </head> <body onLoad="clock();"> <form name="clock"> <table> <tr> <td> '0AK: </td> <td> <input type="text" name="h" size="10" style="border: 0"> </td> </tr> <tr> <td colspan=2> <input type=text name="hours" size="13" style="color: navy"> </td> </tr> <tr> <td> 8=CBK: </td> <td> <input type="text" name="m" size="10" style="border: 0"> </td> </tr> <tr> <td colspan=2> <input type=text name="minutes" size="33" style="color: navy"> </td> </tr> <tr> <td> !5:C=4K: </td> <td> <input type="text" name="s" size="10" style="border: 0"> </td> </tr> <tr> <td colspan=2> <input type=text name="seconds" size="33" style="color: navy"> </td> </tr> <tr> <td> @5<O: <input type=text name="time" size="20" style="border: 0"> </td> </tr> </table> </form> </body> </html>